home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_07 / 9n07094c < prev    next >
Encoding:
Text File  |  1995-11-01  |  314 b   |  17 lines

  1.  
  2.     Display *display;
  3.     Window  window;
  4.     GC      gc;
  5.     int     x, y;
  6.     char    *string;
  7.     int     length;
  8.  
  9.     XDrawImageString( display, window,
  10.             gc, x, y,
  11.             string, length );
  12.  
  13.     XDrawString( display, window,
  14.             gc, x, y,
  15.             string, length );
  16.  
  17.